home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / eg0519s.zip / DRIVER.PAS < prev    next >
Pascal/Delphi Source File  |  1993-01-04  |  1KB  |  45 lines

  1. (*
  2.  * Copyright 1989, 1990 Eric Ng
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 1, or (at your option)
  7.  * any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful, but
  10.  * without any warranty whatsoever, without even the implied warranties
  11.  * of merchantability or fitness for a particular purpose.  See the
  12.  * accompanying GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; see the file COPYING.  If not, write to:
  16.  *
  17.  * Free Software Foundation, Inc.
  18.  * 675 Massachusetts Avenue
  19.  * Cambridge, Massachusetts 02139
  20.  *)
  21.  
  22. {$a-}
  23. {$b-}
  24. {$d-}
  25. {$e-}
  26. {$f-}
  27. {$i-}
  28. {$l-}
  29. {$n-}
  30. {$o-}
  31. {$r-}
  32. {$s-}
  33. {$v-}
  34.  
  35. Unit Driver;
  36.  Interface
  37.   Procedure EgaVgaDriver;
  38.   Procedure HercDriver;
  39.  Implementation
  40.   Procedure EgaVgaDriver; External;
  41. {$l egavga.obj}
  42.   Procedure HercDriver; External;
  43. {$l herc.obj}
  44. End.
  45.